Bump gtk-doc dependency to 1.11 for nicer index-generation.
authorMatthias Clasen <mclasen@redhat.com>
Fri, 21 Nov 2008 08:20:19 +0000 (08:20 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Fri, 21 Nov 2008 08:20:19 +0000 (08:20 +0000)
2008-11-21  Matthias Clasen <mclasen@redhat.com>

        * configure.in: Bump gtk-doc dependency to 1.11 for
        nicer index-generation.

2008-11-21  Matthias Clasen <mclasen@redhat.com>

        * gtk/gtkmountoperation.[hc]: Declare structs in a way that
        gtk-doc understands.

svn path=/trunk/; revision=21794

ChangeLog
configure.in
gtk/gtkmountoperation.c
gtk/gtkmountoperation.h

index 35a7288c56adf51eaf0c14dba5ed0437a67a6f8d..f49a40840a23d14377c025fddb80ad8e103d9f75 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2008-11-21  Matthias Clasen <mclasen@redhat.com>
+
+       * configure.in: Bump gtk-doc dependency to 1.11 for
+       nicer index-generation.
+
+2008-11-21  Matthias Clasen <mclasen@redhat.com>
+
+       * gtk/gtkmountoperation.[hc]: Declare structs in a way that
+       gtk-doc understands.
+
 2008-11-17  Christian Dywan  <christian@imendio.com>
 
        Bug 377699 – realizing gtk.Progress() causes SEGV
index f00157c826eb7207cdceaf74f1ae029282cb8f81..6c0d47a3a5979910c108c313a1dda050c28fbaf6 100644 (file)
@@ -1906,7 +1906,7 @@ fi
 # Checks for gtk-doc and docbook-tools
 ##################################################
 
-GTK_DOC_CHECK([1.8])
+GTK_DOC_CHECK([1.11])
 
 AC_CHECK_PROG(DB2HTML, db2html, true, false)
 AM_CONDITIONAL(HAVE_DOCBOOK, $DB2HTML)
index 42c98f786bd64a5d0671d03046417d1967869c87..b33dafcedf0b8d1f6157cb574ef165b587f84716 100644 (file)
@@ -102,7 +102,7 @@ enum {
 
 };
 
-struct GtkMountOperationPrivate {
+struct _GtkMountOperationPrivate {
   GtkWindow *parent_window;
   GtkDialog *dialog;
   GdkScreen *screen;
index b0a6b04f33174eea65b0be5f6010827f4df2676f..f006082dabb1b522b2cd4e16e78f480110c3553b 100644 (file)
@@ -40,18 +40,18 @@ G_BEGIN_DECLS
 #define GTK_IS_MOUNT_OPERATION_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), GTK_TYPE_MOUNT_OPERATION))
 #define GTK_MOUNT_OPERATION_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), GTK_TYPE_MOUNT_OPERATION, GtkMountOperationClass))
 
-typedef struct GtkMountOperation         GtkMountOperation;
-typedef struct GtkMountOperationClass    GtkMountOperationClass;
-typedef struct GtkMountOperationPrivate  GtkMountOperationPrivate;
+typedef struct _GtkMountOperation         GtkMountOperation;
+typedef struct _GtkMountOperationClass    GtkMountOperationClass;
+typedef struct _GtkMountOperationPrivate  GtkMountOperationPrivate;
 
-struct GtkMountOperation
+struct _GtkMountOperation
 {
   GMountOperation parent_instance;
 
   GtkMountOperationPrivate *priv;
 };
 
-struct GtkMountOperationClass
+struct _GtkMountOperationClass
 {
   GMountOperationClass parent_class;